home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 1 / PC Actual CD 01.iso / share / dos / graficos / plydat14.arj / WAKE.PI < prev    next >
Encoding:
Text File  |  1992-04-05  |  448 b   |  26 lines

  1. // Polyray Raytracer
  2. // Height field sample - Wake behind a boat
  3. // by Alexander Enzmann
  4.  
  5. include "colors.inc"
  6.  
  7. viewpoint {
  8.    from <0,5,-10>
  9.    at <0,0,0>
  10.    up <0,1,0>
  11.    angle 45
  12.    resolution 256, 256
  13.    }
  14.  
  15. light <-45, 25, -4>
  16. light <0, 25, 0>
  17.  
  18. // Define the wake based on a Targa height field
  19. object {
  20.    height_field "wave.tga"
  21.    translate <-1/2,0,-1/2>
  22.    scale <8, 0.03, 8>
  23.    rotate <0, -30, 0>
  24.    shiny_red
  25.    }
  26.